home *** CD-ROM | disk | FTP | other *** search
/ Merciful 2 / Merciful - Disc 2.iso / software / i / imagefxv2.1a.lha / ImageFX / Rexx / AutoFX / SaveBufferAs_ILBM.ifx.pre < prev    next >
Text File  |  1996-03-02  |  867b  |  42 lines

  1. /*
  2.  * SaveBufferAs.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * Save main buffer.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number (?)
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base = 'Autofx_SaveBufferAsILBM_'
  19.  
  20. lastpath = GETCLIP(base||'Path')
  21. lastext  = GETCLIP(base||'Ext')
  22.  
  23. IF lastpath = "" THEN DO
  24.    GetPrefs SavePath
  25.    lastpath = result
  26.    END
  27.  
  28. IF lastext = "" THEN lastext = ".24"
  29.  
  30. Gadget.1 = 'STRING  120  5 200 14 "Output Path:" "'lastpath'"'
  31. Gadget.2 = 'FILEREQ 321  5  20 14 "Output Path:" "'lastpath'" AT=1 DIRONLY'
  32. Gadget.3 = 'STRING  120 20 200 14 "New Extension:" "'lastext'"'
  33. Gadget.4 = 'END'
  34.  
  35. NewComplexRequest '"Save Buffer As ILBM"' Gadget 360 42
  36. IF rc ~= 0 THEN EXIT rc
  37.  
  38. CALL SETCLIP(base||'Path', result.1)
  39. CALL SETCLIP(base||'Ext',  result.3)
  40.  
  41. EXIT
  42.